ComponentOne Data Source for Entity Framework
C1.LiveLinq.Indexing.Search Namespace / GroupingQuery<TKey,T> Class
The type of the index key.
The type of the elements of the indexed collection.
Members

In This Topic
    GroupingQuery<TKey,T> Class
    In This Topic
    Represents a collection of IndexedGroup<TKey,T>, groups of elements with the same key, resulting from a search operation with grouping.
    Object Model
    GroupingQuery<TKey,T> Class
    Syntax
    'Declaration
     
    
    Public MustInherit Class GroupingQuery
        (Of TKey,T) 
    public abstract class GroupingQuery<TKey,T> 
    Type Parameters
    TKey
    The type of the index key.
    T
    The type of the elements of the indexed collection.
    Remarks
    The result of any index search operation, IndexQuery<T,TKey> can be grouped by applying IndexQuery<T,TKey>.GroupByKey. It is grouped by the key that was used to perform the search operation. For example, customers.Indexes(c => c.City).All().GroupByKey(); customers.Indexes(c => c.City).FindBetween("A", "Z").GroupByKey();
    Inheritance Hierarchy

    System.Object
       C1.LiveLinq.Indexing.Search.GroupingQuery<TKey,T>

    See Also